home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / indent18.lha / indent-1.8 / io.c < prev    next >
C/C++ Source or Header  |  1993-06-15  |  21KB  |  908 lines

  1. /* Copyright (c) 1992, Free Software Foundation, Inc.  All rights reserved.
  2.  
  3.    Copyright (c) 1985 Sun Microsystems, Inc. Copyright (c) 1980 The Regents
  4.    of the University of California. Copyright (c) 1976 Board of Trustees of
  5.    the University of Illinois. All rights reserved.
  6.  
  7.    Redistribution and use in source and binary forms are permitted
  8.    provided that
  9.    the above copyright notice and this paragraph are duplicated in all such
  10.    forms and that any documentation, advertising materials, and other
  11.    materials related to such distribution and use acknowledge that the
  12.    software was developed by the University of California, Berkeley, the
  13.    University of Illinois, Urbana, and Sun Microsystems, Inc.  The name of
  14.    either University or Sun Microsystems may not be used to endorse or
  15.    promote products derived from this software without specific prior written
  16.    permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  17.    IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES
  18.    OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. */
  19.  
  20.  
  21. #include "sys.h"
  22. #include "indent.h"
  23. #include <ctype.h>
  24.  
  25. #ifdef VMS
  26. #   include <file.h>
  27. #   include <types.h>
  28. #   include <stat.h>
  29. #else  /* not VMS */
  30.  
  31. /* POSIX says that <fcntl.h> should exist.  Some systems might need to use
  32.    <sys/fcntl.h> or <sys/file.h> instead.  */
  33. #include <fcntl.h>
  34.  
  35. #include <sys/types.h>
  36. #include <sys/stat.h>
  37. #endif /* not VMS */
  38.  
  39. /* number of levels a label is placed to left of code */
  40. #define LABEL_OFFSET 2
  41.  
  42.  
  43. /* Stuff that needs to be shared with the rest of indent. Documented in
  44.    indent.h.  */
  45. char *in_prog;
  46. char *in_prog_pos;
  47. char *cur_line;
  48. unsigned long in_prog_size;
  49. FILE *output;
  50. char *buf_ptr;
  51. char *buf_end;
  52. int had_eof;
  53. int out_lines;
  54. int com_lines;
  55.  
  56. int suppress_blanklines = 0;
  57. static int comment_open;
  58.  
  59. int paren_target;
  60.  
  61. /* Use `perror' to print the system error message
  62.    caused by OFFENDER. */
  63.  
  64. static char *errbuf;
  65.  
  66. void
  67. sys_error (offender)
  68.      char *offender;
  69. {
  70.   int size = strlen (offender);
  71.   static int buffer_size;
  72.  
  73.   if (errbuf == 0)
  74.     {
  75.       buffer_size = size + 10;    /* Extra for random unix lossage */
  76.       errbuf = (char *) xmalloc (buffer_size);
  77.     }
  78.   else if (size + 10 > buffer_size)
  79.     {
  80.       buffer_size = size + 10;
  81.       errbuf = xrealloc (errbuf, buffer_size);
  82.     }
  83.   sprintf (errbuf, "indent: %s", offender);
  84.   perror (errbuf);
  85.   exit (1);
  86. }
  87.  
  88. #ifdef VMS
  89. int
  90. vms_read (int file_desc, void *buffer, int nbytes)
  91. {
  92.     register char *bufp;
  93.     register int nread, nleft;
  94.  
  95.     bufp  = buffer;
  96.     nread = 0;
  97.     nleft = nbytes;
  98.  
  99.     while (nread = read (file_desc, bufp, nleft), nread > 0)
  100.       {
  101.         bufp += nread;
  102.         nleft -= nread;
  103.         if (nleft < 0)
  104.             sys_error ("Internal buffering error");
  105.     }
  106.  
  107.     return nread;
  108. }
  109. #endif /* VMS */
  110.  
  111. INLINE int
  112. count_columns (column, bp)
  113.      int column;
  114.      char *bp;
  115. {
  116.   while (*bp != '\0')
  117.     {
  118.       switch (*bp++)
  119.     {
  120.     case EOL:
  121.     case 014:        /* form feed */
  122.       column = 1;
  123.       break;
  124.     case TAB:
  125.       column += tabsize - (column - 1) % tabsize;
  126.       break;
  127.     case 010:        /* backspace */
  128.       --column;
  129.       break;
  130.     default:
  131.       ++column;
  132.       break;
  133.     }
  134.     }
  135.  
  136.   return column;
  137. }
  138.  
  139. /* Return the column we are at in the input line. */
  140.  
  141. INLINE int
  142. current_column ()
  143. {
  144.   char *p;
  145.   int column = 1;
  146.  
  147.   if (buf_ptr >= save_com.ptr && buf_ptr <= save_com.end)
  148.     p = save_com.ptr;
  149.   else
  150.     p = cur_line;
  151.  
  152. #if 0
  153.   /* Paranoia */
  154.   if (! (buf_ptr >= cur_line && buf_ptr < in_prog_pos))
  155.     abort ();
  156. #endif
  157.  
  158.   column = 1;
  159.   while (p < buf_ptr)
  160.     switch (*p++)
  161.       {
  162.       case EOL:
  163.       case 014:            /* form feed */
  164.     column = 1;
  165.     break;
  166.       case TAB:
  167.     column += tabsize - (column - 1) % tabsize;
  168. #if 0
  169.     column += tabsize - (column % tabsize) + 1;
  170. #endif
  171.     break;
  172.       case '\b':        /* backspace */
  173.     column--;
  174.     break;
  175.       default:
  176.     column++;
  177.     break;
  178.       }
  179.  
  180.   return column;
  181. }
  182.  
  183. void
  184. dump_line ()
  185. {                /* dump_line is the routine that actually
  186.                    effects the printing of the new source. It
  187.                    prints the label section, followed by the
  188.                    code section with the appropriate nesting
  189.                    level, followed by any comments */
  190.   register int cur_col;
  191.   register int target_col = 0;
  192.   static not_first_line;
  193.  
  194.   if (parser_state_tos->procname[0])
  195.     {
  196.       if (troff)
  197.     {
  198.       if (comment_open)
  199.         {
  200.           comment_open = 0;
  201.           fprintf (output, ".*/\n");
  202.         }
  203.       fprintf (output, ".Pr \"%.*s\"\n",
  204.            parser_state_tos->procname_end - parser_state_tos->procname,
  205.            parser_state_tos->procname);
  206.     }
  207.       parser_state_tos->ind_level = 0;
  208.       parser_state_tos->procname = "\0";
  209.     }
  210.  
  211.   /* A blank line */
  212.   if (s_code == e_code && s_lab == e_lab && s_com == e_com)
  213.     {
  214.       /* If we have a formfeed on a blank line, we should just output it,
  215.          rather than treat it as a normal blank line.  */
  216.       if (parser_state_tos->use_ff)
  217.     {
  218.       putc ('\014', output);
  219.       parser_state_tos->use_ff = false;
  220.     }
  221.       else
  222.     {
  223.       if (suppress_blanklines > 0)
  224.         suppress_blanklines--;
  225.       else
  226.         {
  227.           parser_state_tos->bl_line = true;
  228.           n_real_blanklines++;
  229.         }
  230.     }
  231.     }
  232.   else
  233.     {
  234.       suppress_blanklines = 0;
  235.       parser_state_tos->bl_line = false;
  236.       if (prefix_blankline_requested
  237.       && not_first_line
  238.       && n_real_blanklines == 0)
  239.     n_real_blanklines = 1;
  240.       else if (swallow_optional_blanklines && n_real_blanklines > 1)
  241.     n_real_blanklines = 1;
  242.  
  243.       while (--n_real_blanklines >= 0)
  244.     putc (EOL, output);
  245.       n_real_blanklines = 0;
  246.       if (parser_state_tos->ind_level == 0)
  247.     parser_state_tos->ind_stmt = 0;    /* this is a class A kludge. dont do
  248.                        additional statement indentation
  249.                        if we are at bracket level 0 */
  250.  
  251.       if (e_lab != s_lab || e_code != s_code)
  252.     ++code_lines;        /* keep count of lines with code */
  253.  
  254.  
  255.       if (e_lab != s_lab)
  256.     {            /* print lab, if any */
  257.       if (comment_open)
  258.         {
  259.           comment_open = 0;
  260.           fprintf (output, ".*/\n");
  261.         }
  262.       while (e_lab > s_lab && (e_lab[-1] == ' ' || e_lab[-1] == TAB))
  263.         e_lab--;
  264.       cur_col = pad_output (1, compute_label_target ());
  265.       if (s_lab[0] == '#' && (strncmp (s_lab, "#else", 5) == 0
  266.                   || strncmp (s_lab, "#endif", 6) == 0))
  267.         {
  268.           /* Treat #else and #endif as a special case because any text
  269.              after #else or #endif should be converted to a comment.  */
  270.           register char *s = s_lab;
  271.           if (e_lab[-1] == EOL)
  272.         e_lab--;
  273.           do
  274.         putc (*s++, output);
  275.           while (s < e_lab && 'a' <= *s && *s <= 'z');
  276.           while ((*s == ' ' || *s == TAB) && s < e_lab)
  277.         s++;
  278.           if (s < e_lab)
  279.         {
  280.           if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
  281.             fprintf (output, (tabsize > 1 ? "\t%.*s" : "  %.*s"),
  282.                  e_lab - s, s);
  283.           else
  284.             fprintf (output, (tabsize > 1
  285.                       ? "\t/* %.*s */"
  286.                       : "  /* %.*s */"),
  287.                  e_lab - s, s);
  288.         }
  289.         }
  290.       else
  291.         fprintf (output, "%.*s", e_lab - s_lab, s_lab);
  292.       cur_col = count_columns (cur_col, s_lab);
  293.     }
  294.       else
  295.     cur_col = 1;        /* there is no label section */
  296.  
  297.       parser_state_tos->pcase = false;
  298.  
  299.       if (s_code != e_code)
  300.     {            /* print code section, if any */
  301.       register char *p;
  302.       register i;
  303.  
  304.       if (comment_open)
  305.         {
  306.           comment_open = 0;
  307.           fprintf (output, ".*/\n");
  308.         }
  309.  
  310.       /* If a comment begins this line, then indent it to the right
  311.          column for comments, otherwise the line starts with code,
  312.          so indent it for code. */
  313.       if (embedded_comment_on_line == 1)
  314.         target_col = parser_state_tos->com_col;
  315.       else
  316.         target_col = compute_code_target ();
  317.  
  318.       /* If a line ends in an lparen character, the following line should
  319.          not line up with the parenthesis, but should be indented by the
  320.          usual amount.  */
  321.       if (parser_state_tos->last_token == lparen)
  322.         {
  323.           parser_state_tos->paren_indents[parser_state_tos->p_l_follow - 1]
  324.         += ind_size - 1;
  325.         }
  326.  
  327.       for (i = 0; i < parser_state_tos->p_l_follow; i++)
  328.         if (parser_state_tos->paren_indents[i] >= 0)
  329.           parser_state_tos->paren_indents[i]
  330.         = -(parser_state_tos->paren_indents[i] + target_col);
  331.  
  332.       cur_col = pad_output (cur_col, target_col);
  333.       for (p = s_code; p < e_code; p++)
  334.         {
  335. #if 0
  336.           if (*p == (char) 0200)
  337.         fprintf (output, "%d", (int) (target_col * 7));
  338.           else
  339.         if (tabsize > 1)
  340. #endif
  341.         putc (*p, output);
  342.  
  343. #if 0
  344.           else
  345.         {
  346.           int width = 1;
  347.           if (*p == TAB)
  348.             width = (tabsize - ((cur_col - 1) % tabsize));
  349.           cur_col += width;
  350.           while (width--)
  351.             putc (*p, output);
  352.         }
  353. #endif
  354.         }
  355.       cur_col = count_columns (cur_col, s_code);
  356.     }
  357.  
  358.       if (s_com != e_com)
  359.     {
  360.       if (troff)
  361.         {
  362.           int all_here = 0;
  363.           register char *p;
  364.  
  365.           if (e_com[-1] == '/' && e_com[-2] == '*')
  366.         e_com -= 2, all_here++;
  367.           while (e_com > s_com && e_com[-1] == ' ')
  368.         e_com--;
  369.           *e_com = 0;
  370.           p = s_com;
  371.           while (*p == ' ')
  372.         p++;
  373.           if (p[0] == '/' && p[1] == '*')
  374.         p += 2, all_here++;
  375.           else if (p[0] == '*')
  376.         p += p[1] == '/' ? 2 : 1;
  377.           while (*p == ' ')
  378.         p++;
  379.           if (*p == 0)
  380.         goto inhibit_newline;
  381.           if (comment_open < 2 && parser_state_tos->box_com)
  382.         {
  383.           comment_open = 0;
  384.           fprintf (output, ".*/\n");
  385.         }
  386.           if (comment_open == 0)
  387.         {
  388.           if ('a' <= *p && *p <= 'z')
  389.             *p = *p + 'A' - 'a';
  390.           if (e_com - p < 50 && all_here == 2)
  391.             {
  392.               register char *follow = p;
  393.               fprintf (output, "\n.nr C! \\w\1");
  394.               while (follow < e_com)
  395.             {
  396.               switch (*follow)
  397.                 {
  398.                 case EOL:
  399.                   putc (' ', output);
  400.                 case 1:
  401.                   break;
  402.                 case '\\':
  403.                   putc ('\\', output);
  404.                 default:
  405.                   putc (*follow, output);
  406.                 }
  407.               follow++;
  408.             }
  409.               putc (1, output);
  410.             }
  411.           fprintf (output, "\n./* %dp %d %dp\n",
  412.                (int) (parser_state_tos->com_col * 7),
  413.                (int) ((s_code != e_code || s_lab != e_lab)
  414.                   - parser_state_tos->box_com),
  415.                (int) (target_col * 7));
  416.         }
  417.           comment_open = 1 + parser_state_tos->box_com;
  418.           while (*p)
  419.         {
  420.           if (*p == BACKSLASH)
  421.             putc (BACKSLASH, output);
  422.           putc (*p++, output);
  423.         }
  424.         }
  425.       else
  426.         {
  427.           /* Here for comment printing.  This code is new as of
  428.              version 1.8 */
  429.           register target = parser_state_tos->com_col;
  430.           register char *com_st = s_com;
  431.  
  432.           if (cur_col > target)
  433.         {
  434.           putc (EOL, output);
  435.           cur_col = 1;
  436.           ++out_lines;
  437.         }
  438.  
  439.           cur_col = pad_output (cur_col, target);
  440.           fwrite (com_st, e_com - com_st, 1, output);
  441.           cur_col += e_com - com_st;
  442.           com_lines++;
  443.         }
  444.     }
  445.       else if (embedded_comment_on_line)
  446.     com_lines++;
  447.       embedded_comment_on_line = 0;
  448.  
  449.       if (parser_state_tos->use_ff)
  450.     {
  451.       putc ('\014', output);
  452.       parser_state_tos->use_ff = false;
  453.     }
  454.       else
  455.     putc (EOL, output);
  456.  
  457.     inhibit_newline:
  458.       ++out_lines;
  459.       if (parser_state_tos->just_saw_decl == 1
  460.       && blanklines_after_declarations)
  461.     {
  462.       prefix_blankline_requested = 1;
  463.       parser_state_tos->just_saw_decl = 0;
  464.     }
  465.       else
  466.     prefix_blankline_requested = postfix_blankline_requested;
  467.       postfix_blankline_requested = 0;
  468.     }
  469.  
  470.   /* if we are in the middle of a declaration, remember that fact
  471.      for proper comment indentation */
  472.   parser_state_tos->decl_on_line = parser_state_tos->in_decl;
  473.  
  474.   /* next line should be indented if we have not completed this
  475.      stmt and if we are not in the middle of a declaration */
  476.   parser_state_tos->ind_stmt = (parser_state_tos->in_stmt
  477.                 & ~parser_state_tos->in_decl);
  478.  
  479.   parser_state_tos->dumped_decl_indent = 0;
  480.   *(e_lab  = s_lab) = '\0';    /* reset buffers */
  481.   *(e_code = s_code) = '\0';
  482.   *(e_com  = s_com) = '\0';
  483.   parser_state_tos->ind_level = parser_state_tos->i_l_follow;
  484.   parser_state_tos->paren_level = parser_state_tos->p_l_follow;
  485.   if (parser_state_tos->paren_level > 0)
  486.     paren_target
  487.       = -parser_state_tos->paren_indents[parser_state_tos->paren_level - 1];
  488.   else
  489.     paren_target = 0;
  490.   not_first_line = 1;
  491.  
  492.   return;
  493. }
  494.  
  495. /* Return the column in which we should place the code about to be output. */
  496.  
  497. INLINE int
  498. compute_code_target ()
  499. {
  500.   register target_col = parser_state_tos->ind_level + 1;
  501.   register w, t;
  502.  
  503.   if (! parser_state_tos->paren_level)
  504.     {
  505.       if (parser_state_tos->ind_stmt)
  506.     target_col += continuation_indent;
  507.       return target_col;
  508.     }
  509.  
  510.   if (!lineup_to_parens)
  511.     return target_col + (continuation_indent * parser_state_tos->paren_level);
  512.  
  513.   t = paren_target;
  514.   if ((w = count_columns (t, s_code) - max_col) > 0
  515.       && count_columns (target_col, s_code) <= max_col)
  516.     {
  517.       t -= w + 1;
  518.       if (t > target_col)
  519.     target_col = t;
  520.     }
  521.   else
  522.     target_col = t;
  523.  
  524.   return target_col;
  525. }
  526.  
  527. INLINE int
  528. compute_label_target ()
  529. {
  530.   return
  531.   parser_state_tos->pcase ? case_ind + 1
  532.   : *s_lab == '#' ? 1
  533.   : parser_state_tos->ind_level - LABEL_OFFSET + 1;
  534. }
  535.  
  536. /* VMS defines it's own read routine, `vms_read' */
  537. #ifndef SYS_READ
  538. #define SYS_READ read
  539. #endif
  540.  
  541. /* Read file FILENAME into a `fileptr' structure, and return a pointer to
  542.    that structure. */
  543.  
  544. static struct file_buffer fileptr;
  545.  
  546. struct file_buffer *
  547. read_file (filename)
  548.      char *filename;
  549. {
  550.   int fd, size;
  551.   struct stat file_stats;
  552.   int namelen = strlen (filename);
  553.  
  554.   fd = open (filename, O_RDONLY, 0777);
  555.   if (fd < 0)
  556.     sys_error (filename);
  557.  
  558.   if (fstat (fd, &file_stats) < 0)
  559.     sys_error (filename);
  560.  
  561.   if (fileptr.data != 0)
  562.     free (fileptr.data);
  563.   fileptr.size = file_stats.st_size;
  564.   fileptr.data = (char *) xmalloc (file_stats.st_size + 1);
  565.  
  566.   size = SYS_READ (fd, fileptr.data, fileptr.size);
  567.   if (size < 0)
  568.     sys_error (filename);
  569.   if (close (fd) < 0)
  570.     sys_error (filename);
  571.  
  572.   /* Apparently, the DOS stores files using CR-LF for newlines, but
  573.      then the DOS `read' changes them into '\n'.  Thus, the size of the
  574.      file on disc is larger than what is read into memory.  Thanks, Bill. */
  575.   if (size != fileptr.size)
  576.     fileptr.size = size;
  577.  
  578.   fileptr.name = (char *) xmalloc (namelen + 1);
  579.   memcpy (fileptr.name, filename, namelen);
  580.   fileptr.name[namelen] = '\0';
  581.  
  582.   fileptr.data[fileptr.size] = '\0';
  583.  
  584.   return &fileptr;
  585. }
  586.  
  587. /* This should come from stdio.h and be some system-optimal number */
  588. #ifndef BUFSIZ
  589. #define BUFSIZ 1024
  590. #endif
  591.  
  592. /* Suck the standard input into a file_buffer structure, and
  593.    return a pointer to that structure. */
  594.  
  595. struct file_buffer stdinptr;
  596.  
  597. struct file_buffer *
  598. read_stdin ()
  599. {
  600.   unsigned int size = 15 * BUFSIZ;
  601.   int ch;
  602.   register char *p;
  603.  
  604.   if (stdinptr.data != 0)
  605.     free (stdinptr.data);
  606.  
  607.   stdinptr.data = (char *) xmalloc (size + 1);
  608.   stdinptr.size = 0;
  609.   p = stdinptr.data;
  610.   do
  611.     {
  612.       while (stdinptr.size < size)
  613.     {
  614.       ch = getc (stdin);
  615.       if (ch == EOF)
  616.         break;
  617.  
  618.       *p++ = ch;
  619.       stdinptr.size++;
  620.     }
  621.  
  622.       if (ch != EOF)
  623.     {
  624.       size += (2 * BUFSIZ);
  625.       stdinptr.data = xrealloc (stdinptr.data, size);
  626.       p = stdinptr.data + stdinptr.size;
  627.     }
  628.     }
  629.   while (ch != EOF);
  630.  
  631.   stdinptr.name = "Standard Input";
  632.  
  633.   stdinptr.data[stdinptr.size] = '\0';
  634.  
  635.   return &stdinptr;
  636. }
  637.  
  638. /* Advance `buf_ptr' so that it points to the next line of input.
  639.  
  640.    If the next input line contains an indent control comment turning
  641.    off formatting (a comment, C or C++, beginning with *INDENT-OFF*),
  642.    then simply print out input lines without formatting until we find
  643.    a corresponding comment containing *INDENT-0N* which re-enables
  644.    formatting.
  645.  
  646.    Note that if this is a C comment we do not look for the closing
  647.    delimiter.  Note also that older version of this program also
  648.    skipped lines containing *INDENT** which represented errors
  649.    generated by indent in some previous formatting.  This version does
  650.    not recognize such lines. */
  651.  
  652. INLINE void
  653. fill_buffer ()
  654. {
  655.   register char *p;
  656.   int inhibit_formatting = 0;
  657.  
  658.   /* indent() may be saving the text between "if (...)" and the following
  659.      statement.  To do so, it uses another buffer (`save_com').  Switch
  660.      back to the previous buffer here. */
  661.   if (bp_save != 0)
  662.     {
  663.       buf_ptr = bp_save;
  664.       buf_end = be_save;
  665.       bp_save = be_save = 0;
  666.  
  667.       /* only return if there is really something in this buffer */
  668.       if (buf_ptr < buf_end)
  669.     return;
  670.     }
  671.  
  672.   /* If formatting gets turned off, then just loop here outputting lines
  673.      until formatting is re-enabled. */
  674.   do
  675.     {
  676.       /* Advance buf_ptr past last line, and return if EOF. */
  677.       cur_line = buf_ptr = in_prog_pos;
  678.       if (*buf_ptr == '\0')
  679.     {
  680.       had_eof = true;
  681.       return;
  682.     }
  683.  
  684.       /* Examine the beginning of the line for an indent control
  685.          comment. */
  686.       p = buf_ptr;
  687.       while (*p == ' ' || *p == TAB)
  688.     p++;
  689.       if (*p == '/' && (*(p + 1) == '*' || *(p + 1) == '/'))
  690.     {
  691.       p += 2;
  692.       while (*p == ' ' || *p == TAB)
  693.         p++;
  694.       if (! inhibit_formatting)
  695.         {
  696.           if (! strncmp (p, "*INDENT-OFF*", 12))
  697.         {
  698.           if (s_com != e_com || s_lab != e_lab || s_code != e_code)
  699.             dump_line ();
  700.           inhibit_formatting = 1;
  701.         }
  702.         }
  703.       else
  704.         {
  705.           if (! strncmp (p, "*INDENT-ON*", 11))
  706.         {
  707.           p += 11;
  708.           /* Set inhibit_formatting to 2 so that we will
  709.              still toss out this whole line, but drop out
  710.              of the loop afterwards. */
  711.           inhibit_formatting = 2;
  712.           n_real_blanklines = 0;
  713.           postfix_blankline_requested = 0;
  714.           prefix_blankline_requested = 0;
  715.           suppress_blanklines = 1;
  716.         }
  717.         }
  718.     }
  719.  
  720.       /* Now procede through the rest of the line */
  721.       while (*p != '\0' && *p != EOL)
  722.     p++;
  723.       buf_end = in_prog_pos = p + 1;
  724.  
  725.       if (inhibit_formatting)
  726.     {
  727.       p = buf_ptr;
  728.       while (p < buf_end)
  729.         putc (*p++, output);
  730.       if (inhibit_formatting == 2)
  731.         {
  732.           inhibit_formatting = 0;
  733.           continue;
  734.         }
  735.     }
  736.     }
  737.   while (inhibit_formatting);
  738. }
  739.  
  740. /* Fill the output line with whitespace up to TARGET_COLUMN, given that
  741.    the line is currently in column CURRENT_COLUMN.  Returns the ending
  742.    column. */
  743.  
  744. INLINE int
  745. pad_output (current_column, target_column)
  746.   register int current_column;
  747.   register int target_column;
  748. {
  749.   if (troff)
  750.     {
  751.       fprintf (output, "\\h'|%dp'", (int) ((target_column - 1) * 7));
  752.       return 0;
  753.     }
  754.  
  755.   if (current_column >= target_column)
  756.     return current_column;
  757.  
  758.   if (tabsize > 1)
  759.     {
  760.       register int offset;
  761.  
  762.       offset = tabsize - (current_column - 1) % tabsize;
  763.       while (current_column + offset <= target_column)
  764.     {
  765.       putc (TAB, output);
  766.       current_column += offset;
  767.       offset = tabsize;
  768.     }
  769.     }
  770.  
  771.   while (current_column < target_column)
  772.     {
  773.       putc (' ', output);
  774.       current_column++;
  775.     }
  776.  
  777.   return current_column;
  778. }
  779.  
  780. /* Nonzero if we have found an error (not a warning).  */
  781. int found_err;
  782.  
  783. /* Signal an error.  LEVEL is nonzero if it is an error (as opposed to a
  784.    warning.  MSG is a printf-style format string.  Additional arguments are
  785.    additional arguments for printf.  */
  786. /* VARARGS2 */
  787. diag (level, msg, a, b)
  788.      int level;
  789.      unsigned int a, b;
  790.      char *msg;
  791. {
  792.   if (level)
  793.     found_err = 1;
  794.  
  795.   fprintf (stderr, "indent:%s:%d: %s: ", in_name, (int) line_no,
  796.        level == 0 ? "Warning" : "Error");
  797.  
  798.   if (msg)
  799.     fprintf (stderr, msg, a, b);
  800.  
  801.   fprintf (stderr, "\n");
  802. }
  803.  
  804. writefdef (f, nm)
  805.      register struct fstate *f;
  806.      unsigned int nm;
  807. {
  808.   fprintf (output, ".ds f%c %s\n.nr s%c %d\n",
  809.        (int) nm, f->font, nm, (int) f->size);
  810. }
  811.  
  812. /* Write characters starting at S to change the font from OF to NF.  Return a
  813.    pointer to the character after the last character written. For troff mode
  814.    only.  */
  815. char *
  816. chfont (of, nf, s)
  817.      register struct fstate *of, *nf;
  818.      char *s;
  819. {
  820.   if (of->font[0] != nf->font[0]
  821.       || of->font[1] != nf->font[1])
  822.     {
  823.       *s++ = '\\';
  824.       *s++ = 'f';
  825.       if (nf->font[1])
  826.     {
  827.       *s++ = '(';
  828.       *s++ = nf->font[0];
  829.       *s++ = nf->font[1];
  830.     }
  831.       else
  832.     *s++ = nf->font[0];
  833.     }
  834.   if (nf->size != of->size)
  835.     {
  836.       *s++ = '\\';
  837.       *s++ = 's';
  838.       if (nf->size < of->size)
  839.     {
  840.       *s++ = '-';
  841.       *s++ = '0' + of->size - nf->size;
  842.     }
  843.       else
  844.     {
  845.       *s++ = '+';
  846.       *s++ = '0' + nf->size - of->size;
  847.     }
  848.     }
  849.   return s;
  850. }
  851.  
  852. void
  853. parsefont (f, s0)
  854.      register struct fstate *f;
  855.      char *s0;
  856. {
  857.   register char *s = s0;
  858.   int sizedelta = 0;
  859.   int i;
  860.  
  861.   f->size = 0;
  862.   f->allcaps = 1;
  863.   for (i = 0; i < 4; i++)
  864.     f->font[i] = 0;
  865.  
  866.   while (*s)
  867.     {
  868.       if (isdigit (*s))
  869.     f->size = f->size * 10 + *s - '0';
  870.       else if (isupper (*s))
  871.     if (f->font[0])
  872.       f->font[1] = *s;
  873.     else
  874.       f->font[0] = *s;
  875.       else if (*s == 'c')
  876.     f->allcaps = 1;
  877.       else if (*s == '+')
  878.     sizedelta++;
  879.       else if (*s == '-')
  880.     sizedelta--;
  881.       else
  882.     {
  883.       fprintf (stderr, "indent: bad font specification: %s\n", s0);
  884.       exit (1);
  885.     }
  886.       s++;
  887.     }
  888.   if (f->font[0] == 0)
  889.     f->font[0] = 'R';
  890.   if (bodyf.size == 0)
  891.     bodyf.size = 11;
  892.   if (f->size == 0)
  893.     f->size = bodyf.size + sizedelta;
  894.   else if (sizedelta > 0)
  895.     f->size += bodyf.size;
  896.   else
  897.     f->size = bodyf.size - f->size;
  898. }
  899.  
  900. #ifdef DEBUG
  901. void
  902. dump_debug_line ()
  903. {
  904.   fprintf (output, "\n*** Debug output marker line ***\n");
  905. }
  906.  
  907. #endif
  908.